home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1999 March / EnigmA AMIGA RUN 35 (1999)(G.R. Edizioni)(IT)[!][issue 1999-03].iso / earcd / misc / pdflib / include / unistd.h < prev   
C/C++ Source or Header  |  1999-01-01  |  217b  |  18 lines

  1. #ifndef __UNISTD_H
  2. #define __UNISTD_H
  3.  
  4. #include <libc.h>
  5.  
  6. #ifndef _DOS_H
  7. #include <dos.h>
  8. #endif
  9.  
  10. #ifndef _FCNTL_H
  11. #include <fcntl.h>
  12. #endif
  13.  
  14. char *mktemp(char *template_arg);
  15. int mkstemp(char *template_arg);
  16.  
  17. #endif
  18.